home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / security / crack_4.1-tar / Scripts / nastygram < prev    next >
Encoding:
Text File  |  1992-06-25  |  1.4 KB  |  41 lines

  1. #!/bin/sh
  2.  
  3. ###
  4. # This program is copyright Alec Muffett 1991, and is provided as part of
  5. # the Crack v4.0 Password Cracking package.  The author disclaims all
  6. # responsibility or liability with respect to it's usage or its effect
  7. # upon hardware or computer systems, and maintains copyright as set out in
  8. # the "LICENCE" document which accompanies distributions of Crack v4.0 and
  9. # upwards. So there...
  10. ###
  11.  
  12. for username in $*
  13. do
  14.         mail $username <<EndOfLetter
  15.                                         `date`
  16.  
  17. Dear $username,
  18.  
  19. The login password you use for the account "$username" has been found to
  20. be insecure by the "Crack" password guessing program.  You must change
  21. your password as soon as possible. 
  22.  
  23. Passwords which are not easily compromised by programs such as "Crack"
  24. are based upon non-dictionary words, hence any word which might appear
  25. in a dictionary, EVEN IF IT IS SUPPOSEDLY A OBSCURE WORD is unsuitable. 
  26.  
  27. Similarly, any password which is derived from your name, department or
  28. other personal information is unsuitable because it can be easily
  29. guessed. 
  30.  
  31. It is important that password security be maintained at a high level for
  32. the sake of ALL the people who use these computers.  We thank you for
  33. your co-operation in this matter. 
  34.  
  35.                                 Yours,
  36.  
  37.                                         Alec Muffett, Aberystwyth, UK
  38.                                         pp Your System Administrator
  39. EndOfLetter
  40. done
  41.